メインコンテンツまでスキップ

SCWebConsole 설치

1. 설치패키지 구성

image-20241206150221540


2. 시스템 구성

image-20241206115140673


3. 설치

  • SCWebConsole 설치 경로가 "/app/Softcamp" 디렉토리라 가정 함

    tar -zxvf SCWebconsole.tar.gz -C /app/Softcamp/
    cd /app/Softcamp/SCWebconsole

4. 설정 파일 수정

  • TFTDB 계정 정보 입력

    $SCWebconsole/data/conf/context-datasource.xml
        ···
    <!-- Maria DB -->
    <bean id="dataSource" class="org.springframework.jdbc.datasource.SimpleDriverDataSource">
    <property name="driverClass" value="org.mariadb.jdbc.Driver"/>
    <property name="url" value="jdbc:mariadb://127.0.0.1:3306/tftdb?allowMultiQueries=true"/>
    <property name="username" value="drmadmin"/>
    <property name="password" value="softcamp1!"/>
    </bean>

  • 웹콘솔 최고관리자 계정으로 로그인 할 IP 추가

    $SCWebconsole/data/JSON/customPolicy.json
      ···
    {
    "key": "systemAccessIP",
    "value": "127.0.0.1|10.10.32.9|10.10.32.10"
    }
    ···

  • 웹콘솔 접속 포트 설정

    $SCWebconsole/app/tomcat9.0/conf/server.xml
        <!-- A "Connector" represents an endpoint by which requests are received
    and responses are returned. Documentation at :
    Java HTTP Connector: /docs/config/http.html
    Java AJP Connector: /docs/config/ajp.html
    APR (HTTP/AJP) Connector: /docs/apr.html
    Define a non-SSL/TLS HTTP/1.1 Connector on port 8080
    -->
    <Connector port="8000" protocol="HTTP/1.1"
    connectionTimeout="20000"
    redirectPort="8443" URIEncoding="UTF-8"/>
    <!-- A "Connector" using the shared thread pool-->
    <!--
    <Connector executor="tomcatThreadPool"
    port="8080" protocol="HTTP/1.1"
    connectionTimeout="20000"
    redirectPort="8443"
    maxParameterCount="1000"
    />
    -->

5. Tomcat 서비스 시작

cd /app/Softcamp/SCWebconsole/app/tomcat9.0
./tomcat_start.sh

6. 웹콘솔 접속

image-20241206141319521

  • Chrome 또는 Edge 브라우저에서 웹콘솔 접속
  • 접속 url : http://서버IP:8000
  • 계정(Default) ID/PW : document / security